home *** CD-ROM | disk | FTP | other *** search
- How to use MidiVision 1.00 with the new Acorn Midi Roms (version 3.14)?
-
- After I wrote the MidiVision MIDI Input Monitor (Shareware 33), Acorn
- changed the specifications of its MIDI podule. If you change the code
- of FNmidiIn as follows, it will work fine again.
-
- DEF FNmidiIn
- LOCAL R0, R1
- R0=0 : R1=0
- WHILE R0=0
- SYS("MIDI_RxByte"),-1 TO R0,R1
- ENDWHILE
- R0 = R0 AND &FF
- t$=STR$(R1)
- IF LEN(t$)>4 THEN t$=RIGHT$(t$)
- WHILE LEN(t$)<4
- t$=" "+t$
- ENDWHILE
- =R0
-
- If you want MidiVision to show real time messages too, you should add
-
- SYS"MIDI_Init",1<<30
-
- in the beginning of the program, just before the SYS"MIDI_TxStart".
-
-
-
- The Lord Of Entropy
-